home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / jcool01.zip / COUNTRY.C < prev    next >
C/C++ Source or Header  |  1992-08-25  |  623b  |  29 lines

  1. // Created: JAM 08/24/92 -- created to move large static from header; I
  2. //                       don't know why it was in the header file which
  3. //                       is #included by <Data_Time.h>!
  4.  
  5. #include <cool/country.h>
  6.  
  7. const char* const country_names[] = {        // ASCII country names
  8.   "Unknown Country",
  9.   "United States",
  10.   "French Canadian",
  11.   "Latin America",
  12.   "Netherlands",
  13.   "Belgium",
  14.   "France",
  15.   "Spain",
  16.   "Italy",
  17.   "Switzerland",
  18.   "United Kingdom",
  19.   "Denmark",
  20.   "Sweden",
  21.   "Norway",
  22.   "Germany",
  23.   "Portugal",
  24.   "Finland",
  25.   "Arabic Countries",
  26.   "Israel"          
  27. };
  28.  
  29.